home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / code / chap13 / Fr.java < prev    next >
Encoding:
Java Source  |  1997-04-20  |  180 b   |  10 lines

  1. import java.awt.*;
  2.  
  3. public class Fr extends Frame {
  4.    public static void main(String[] args) {
  5.       Fr fr = new Fr();
  6.       fr.resize(220, 100);
  7.       fr.show();
  8.    }
  9. }
  10.